/* default table */
/* default table container */
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 2px;
    color: black;
}

/* default table header */
th {
    padding: 8px;
    text-align: center; /* horizontal center */
    vertical-align: middle; /* vertical center */
    border: 0px solid black;
    background-color: #e26b6b;
    color: black;
}

/* default table data cells */
td {
    padding: 8px;
    text-align: center; /* horizontal center */
    vertical-align: middle; /* vertical center */
    border: 0px solid black;
    background-color: #f2c8c8;
    color: black;
}